home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue60 / COMThrd / MultipleSTAServer.dpr < prev    next >
Encoding:
Text File  |  2000-05-12  |  395 b   |  19 lines

  1. program MultipleSTAServer;
  2.  
  3. uses
  4.   Forms,
  5.   MultipleSTAServerForm in 'MultipleSTAServerForm.pas' {Form1},
  6.   STAThread in 'STAThread.pas',
  7.   MultipleSTAServer_TLB in 'MultipleSTAServer_TLB.pas',
  8.   STAObjectImpl in 'STAObjectImpl.pas' {STAObject: CoClass};
  9.  
  10. {$R *.TLB}
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.Run;
  18. end.
  19.